home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / usefull / blocnotes / archivenote.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1996-04-12  |  259 b   |  16 lines

  1. /* Hides notes and makes it not autoopen*/
  2.  
  3. address 'blocnotes.rexx'
  4. options results
  5.  
  6. /*Get the id of the note*/
  7.  
  8. parse arg id .
  9.  
  10. ISANOTE id
  11. if result then do     /* Check if the id is valid*/
  12.    HIDE id
  13.    AUTOOPEN id OFF
  14.    FIXEDSCREEN id OFF
  15.    SAVE id
  16. end